/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

header {
    background-color: #007bff;
    color: #fff;
    padding: 20px;
}

header h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.container {
    padding: 20px;
}

.car-listings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 20px;
}

.car {
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.car img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.car h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.car p {
    margin-bottom: 10px;
}

.car button {
    background-color: #007bff;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.car button:hover {
    background-color: #0056b3;
}

footer {
    background-color: #007bff;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 0%;
    padding: 20px;
}

.profile-container {
    padding: 20px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0 auto; /* Center the profile container horizontally */
    max-width: 800px; /* Set a maximum width for responsiveness */
  }
  
  .profile-container h1 {
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center; /* Center the title text */
  }
  
  .vehicle-information,
  .reviews {
    padding: 20px;
    border-bottom: 1px solid #ddd;
  }
  
  .vehicle-information h2,
  .reviews h2 {
    font-size: 1.4em;
    margin-bottom: 10px;
  }

